home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 14 / CU Amiga Magazine's Super CD-ROM 14 (1997)(EMAP Images)(GB)(Track 1 of 3)[!][issue 1997-09].iso / CUCD / Programming / IEditor / Include / loaderlib.h < prev   
Encoding:
C/C++ Source or Header  |  1997-06-17  |  1.1 KB  |  27 lines

  1. #ifndef IEDIT_LOADER_H
  2. #define IEDIT_LOADER_H
  3. /*
  4. **      Interface Editor loader definitions.
  5. **
  6. **      (C) Copyright 1996 Simone Tellini
  7. **          All Rights Reserved
  8. */
  9.  
  10.  
  11. /*  Error Codes    */
  12.  
  13. #define  LOADER_OK              0       /* GUI successfully loaded     */
  14. #define  LOADER_UNKNOWN         1       /* file type not recognized    */
  15. #define  LOADER_IOERR           2       /* read-write error            */
  16. #define  LOADER_UNWELCOME       3       /* e.g. return it if you're    */
  17.                                         /* asked to load a screen      */
  18.                                         /* definition but the user     */
  19.                                         /* selects a gadgets file      */
  20. #define  LOADER_WRONGVERSION    4       /* data file version not       */
  21.                                         /* supported                   */
  22. #define  LOADER_NOMEMORY        5       /* Out of memory               */
  23. #define  LOADER_NOTSUPPORTED    6       /* We're asked to do something */
  24.                                         /* we cannot do                */
  25.  
  26. #endif
  27.